for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
$(function () {
$('#calendar-holder').fullCalendar({
header: {
left: 'prev, next',
center: 'title',
right: 'month, basicWeek, basicDay,'
},
lazyFetching: true,
timeFormat: {
agenda: 'h:mmt',
'': 'h:mmt'
eventSources: [
{
url: '/full-calendar/load',
type: 'POST',
data: {},
error: () => {}
}
]
});